home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / undo / UndoableEdit.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  578 b   |  26 lines

  1. package javax.swing.undo;
  2.  
  3. public interface UndoableEdit {
  4.    boolean addEdit(UndoableEdit var1);
  5.  
  6.    boolean canRedo();
  7.  
  8.    boolean canUndo();
  9.  
  10.    void die();
  11.  
  12.    String getPresentationName();
  13.  
  14.    String getRedoPresentationName();
  15.  
  16.    String getUndoPresentationName();
  17.  
  18.    boolean isSignificant();
  19.  
  20.    void redo() throws CannotRedoException;
  21.  
  22.    boolean replaceEdit(UndoableEdit var1);
  23.  
  24.    void undo() throws CannotUndoException;
  25. }
  26.